.adventure-container { 
  background-color: transparent;
  color: white;
  height: 220px; /* Fixed Height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.MyTrip {
  background-color: #ff9800; /* Default bg */
  color: #000;              /* Default text */
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.MyTrip:hover {
  background-color: #52a4dd; /* Hover bg */
  color: #fff;               /* Hover text */
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}
    
    h1 {
      font-size: 1.5rem; /* Smaller font to fit in 150px */
      margin: 0;
      letter-spacing: 1px;
    }
    p {
      font-size: 0.95rem;
      margin: 0;
      letter-spacing: 1px;
    }